Skip to main content

Errors

Status Codes​

  • 400: Invalid request body.
  • 401: Missing or malformed Authorization header.
  • 403: Key revoked, expired, not found, or missing permission.
  • 429: Rate limit exceeded.
  • 500: Unexpected server error.

401 / 403 Shape​

{
"statusCode": 403,
"message": "The provided API key has been revoked.",
"error": "Forbidden"
}

400 Validation Shape​

{
"statusCode": 400,
"message": [
"first_name must be a string",
"work_email must be an email"
],
"error": "Bad Request"
}